home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / PBLIB1 / SKEL / TEST.PAS < prev   
Pascal/Delphi Source File  |  1994-05-03  |  689b  |  45 lines

  1. PROGRAM TEST;
  2.  
  3. {$M 20000,0,655000}
  4.  
  5. Uses PbMISC, PbDATA, PbPARMS, PbOUT0;
  6.  
  7.  
  8. {
  9. Description : Skeleton TEST Program
  10.  
  11. Author      : Howard Richoux
  12. Date        :
  13. Last revised: 2/18/94
  14. Application : IBM PC and compatibles, done in Turbo Pascal 7
  15. Status      : Placed in the Public Domain by HNR Software January 31, 1994
  16. Published in: none
  17. }
  18.  
  19.  
  20. {*****************************************************************}
  21.  
  22.  
  23. Procedure GoOn;
  24.      begin
  25.      OUT('Hello world. ');
  26.      end;
  27.  
  28.  
  29.  
  30. Procedure Init;
  31.      begin
  32.      StandardOUTInit;
  33.      end;
  34.  
  35.  
  36. (*  Main program *)
  37.      BEGIN
  38.      pProgID := 'TEST 1.00';
  39.      Init;
  40.      GoOn;
  41.      OUTdone;
  42.      end.
  43.  
  44.  
  45.